From 6d3aa7a7fce774e15b5876b25f07923bcaa2f1e4 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Mon, 9 Mar 2026 20:04:27 +0200 Subject: [PATCH] [PATCH 21/24] auth: cache - Use translated username in auth_cache_remove() Gbp-Pq: Name CVE-2026-27855-1.patch --- src/auth/auth-cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/auth-cache.c b/src/auth/auth-cache.c index 360ad8b..a5732f4 100644 --- a/src/auth/auth-cache.c +++ b/src/auth/auth-cache.c @@ -474,7 +474,7 @@ void auth_cache_remove(struct auth_cache *cache, { struct auth_cache_node *node; - key = auth_request_expand_cache_key(request, key, request->fields.user); + key = auth_request_expand_cache_key(request, key, request->fields.translated_username); node = hash_table_lookup(cache->hash, key); if (node == NULL) return; -- 2.30.2